diff options
Diffstat (limited to 'src/app/manga/[title]/[id]/[read]/download.jsx')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/download.jsx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/download.jsx b/src/app/manga/[title]/[id]/[read]/download.jsx index e7a20ee..bddf6d3 100644 --- a/src/app/manga/[title]/[id]/[read]/download.jsx +++ b/src/app/manga/[title]/[id]/[read]/download.jsx @@ -1,21 +1,21 @@ -"use client"; - -import styles from "./read.module.css"; - -export default function DownloadManga({ chapterId: id }) { - return ( - <div className={styles.DownloadMain}> - <a - href={`https://manga-downloader-7nca.onrender.com/download?id=${id}`} - style={{ textDecoration: "none" }} - onClick={() => - alert( - "Downloads are not instant. It might take some time to prepare your file. Thank you for your patience" - ) - } - > - <button title="should work just fine">Download - Beta</button> - </a> - </div> - ); -} +"use client";
+
+import styles from "./read.module.css";
+
+export default function DownloadManga({ chapterId: id }) {
+ return (
+ <div className={styles.DownloadMain}>
+ <a
+ href={`https://manga-downloader-7nca.onrender.com/download?id=${id}`}
+ style={{ textDecoration: "none" }}
+ onClick={() =>
+ alert(
+ "Downloads are not instant. It might take some time to prepare your file. Thank you for your patience"
+ )
+ }
+ >
+ <button title="should work just fine">Download - Beta</button>
+ </a>
+ </div>
+ );
+}
|